Setup unit tests code coverage in VS Code for .Net Core projects

2020-10-25
5 min read
When working on the project, does not matter how big or small, having written unit tests, integration tests, it is like having safety net under you before walking the thin line of changing functionality. Code coverage reporting after running tests helps track how much of the production code is covered by tests. Continue reading...
Blog Image

Using AutoMapper & Heroic AutoMapper in .Net Core WebApi

2020-10-16
5 min read
AutoMapper is a library that helps to write clean code by removing need to explicitly map one object to another by hand. In this post I am going to discuss how to add AutoMapper to WebApi .Net Core project and use Heroic.AutoMapper to write cleaner mapping interfaces between objects. Continue reading...
Blog Image